home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Fight / battleinmegaville.swf / scripts / DefineSprite_57 / frame_6 / DoAction.as
Text File  |  2006-09-05  |  259b  |  12 lines

  1. if(Math.abs(_root.chance - _root.maxchance) < Math.abs(_root.chance - _root.minchance))
  2. {
  3.    if(Math.random() < Math.max(_root.chance,_root.slowchance))
  4.    {
  5.       gotoAndPlay(5);
  6.    }
  7. }
  8. else if(Math.random() < _root.chance)
  9. {
  10.    gotoAndPlay(5);
  11. }
  12.